@charset "UTF-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
input,
select,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

audio,
canvas,
video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    border: 0;
    vertical-align: top;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.tal {
    text-align: left;
}

.tac {
    text-align: center;
}

.tar {
    text-align: right;
}

.bc {
    margin-left: auto;
    margin-right: auto;
}

.fl,
.fr {
    display: inline;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.cb {
    clear: both;
}

.cl {
    clear: left;
}

.cr {
    clear: right;
}

.clearfix {
    overflow: hidden;
    zoom: 1;
}

.hide {
    visibility: hidden;
}

.none {
    display: none;
}

html {
    font-size: 625%;
}

body {
    font: 16px/180% 'Microsoft YaHei', sans-serif;
    color: #000;
}

a {
    color: #000;
}

.overFlow {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.backShade {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, .6);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity .5s;
    z-index: 900;
}

.backShade.fadeOut {
    opacity: 0;
}

.shadeBlock {
    display: inline-block;
    width: 80%;
    position: relative;
    background: linear-gradient(#038ED3, #012E95);
}

.shadeBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, .6);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.shadeBtn::before,
.shadeBtn::after {
    content: '';
    position: absolute;
    left: 5px;
    right: 5px;
    top: 50%;
    height: 1px;
    background: #fff;
}

.shadeBtn::before {
    transform: rotateZ(45deg);
}

.shadeBtn::after {
    transform: rotateZ(-45deg);
}

.shadeBlock img {
    width: 100%;
    opacity: 0;
    animation: imgIn .8s forwards ease-in;
}

@keyframes imgIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* 首页顶部 */
.top {
    background: #97CBE8;
}

.top.sedCont {
    background: #6C7377;
}

.topWrap {
    width: 1170px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.logo {
    width: 200px;
}

.topBar {
    width: 1000px;
    padding: 15px 0;
}

.topBar a{
    font-size:14px;
}

.topBar ul {
    font-size: 20px;
    color: #fff;
    padding-top: 10px;
    float: left;
}

.topBar ul a {
    color: #fff;
}

.topBar li {
    float: left;
    padding: 0 15px;
    position: relative;
}

.topBar li.current-menu-item a {
	padding-bottom: 5px;
	border-bottom: 2px solid #fff;
}

.topBar li.current-menu-parent a {
	padding-bottom: 5px;
	border-bottom: 2px solid #fff;
}

.topBar .sub-menu {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 28px;
    z-index: 10;
    display: none;
    transform: translateX(-50%);
}

.topBar .sub-menu .menu-item {
    font-size: 16px;
    text-align: center;
    padding: 5px 10px;
    background: #97CBE8;
    border-bottom: 1px solid #fff;
    position: relative;
    white-space: nowrap;
    float: none;
}

.sedCont .sub-menu .menu-item {
    background: #61686c;
}

.topBar .sub-menu .menu-item a {
    position: relative;
    z-index: 1;
    border: none;
}

.topBar .sub-menu .menu-item::before {
    width: 0;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: #2D6AA2;
    transition: all .5s;
}

.sedCont .sub-menu .menu-item::before {
    background: #333;
}

.topBar .sub-menu .menu-item:hover::before {
    width: 100%;
}

.search {
    width: 78px;
    height: 37px;
    float: right;
    border: 1px solid #fff;
    border-radius: 20px;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 10px;
    margin-right: 15px;
    transition: width .6s;
}

.search.change {
    width: 200px;
}

.searchInput {
    width: 15px;
    height: 37px;
    float: left;
    outline: none;
    color: #fff;
    line-height: 37px;
    background: #97CBE8;
    transition: width .6s;
}

.sedCont .searchInput {
    background: #6C7377;
}

.search.change .searchInput {
    width: 130px;
}

.searchBtn {
    width: 37px;
    height: 37px;
    float: right;
    background: url('./images/search.png') no-repeat 50% 50%/80% 80%;
}

/* 切换图 */

.changePic {
    width: 100%;
    overflow: hidden;
}

.changePic .swiper-slide {
    width: 100%;
    height: 100%;
}

.changePic .swiper-slide img {
    width: 100%;
}

.changePic .swiper-pagination {
    width: auto;
    position: absolute;
    left: auto;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.changePic .swiper-pagination .swiper-pagination-bullet {
    margin: 2.5px;
    width: 12px;
    height: 12px;
}

/* 栏目名称 */

.lmName {
    width: 1170px;
    margin: 0 auto;
    text-align: center;
    padding: 110px 0 50px;
}

.lmName h2 {
    display: inline-block;
    font-size: 34px;
    line-height: 1em;
    padding-bottom: 15px;
    font-weight: normal;
    position: relative;
}

.lmName h2::after {
    content: '';
    width: 145px;
    border-bottom: 4px solid #4DB1EC;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* 业界交流 */

.exchange {
    width: 1170px;
    margin: 0 auto;
    zoom: 1;
    overflow: hidden;
    border: 1px solid #BFBFBF;
    box-sizing: border-box;
}

.Box1 {
  zoom: 1;
  overflow: hidden;
}


.Box1_Left {
  width: 660px;
  overflow: hidden;
  position: relative;
  float: left;
}


.Box1_Left li {
  width: 100%;
  position: relative;
  display: none;
}


.Box1_Left li img {
  width: 100%;
}


.Box1_Left li p {
  width: 100%;
  height: 45px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: #000;
  padding: 0 20px;
  font-weight: bold;
  font-size: 16px;
  color: #FFF;
  line-height: 45px
}


.Box1_Left li p a {
  font-size: 16px;
  color: #FFF;
  line-height: 45px;
}


.Box1_Left .pmenu {
  width: 85px;
  height: 45px;
  position: absolute;
  bottom: 0;
  right: 10px;
  font-size: 16px;
  line-height: 45px;
  color: #6D6D6D;
  z-index: 2
}


.Box1_Left .pmenu span {
  color: #E50012;
}


.Box1_Left .plr {
  width: 55px;
  height: 45px;
  position: absolute;
  bottom: 5px;
  right: 0;
  z-index: 2;
  cursor: pointer}
.Box1_Right {
  width: 450px;
  float: right;
  padding: 15px 40px 15px 0;
}


.Box1_Right li {
  padding: 25px 0 25px 20px;
  overflow: hidden;
  border-bottom: solid 1px #E7E7E7;
}


.Box1_Right li a {
  font-size: 16px;
}


.Box1_Right p {
  text-align: right;
}

/* 品牌活动 */

.picList1 {
    width: 1170px;
    margin: 0 auto;
}

.picList1 ul {
    zoom: 1;
    overflow: hidden;
}

.picList1 li {
    width: 370px;
    float: left;
    display: inline-block;
    margin-left: 30px;
    box-sizing: border-box;
    border: 1px solid #BFBFBF;
}

.picList1 li:nth-child(1) {
    margin-left: 0;
}

.picList1 li img {
    width: 368px;
    height: 240px;
}

.picList1 p {
    padding: 0 15px;
    line-height: 36px;
    font-size: 12px;
    color: #bcbcbc;
    border-bottom: 1px solid #BFBFBF;
}

.picList1 h2 {
    text-align: center;
    font-size: 16px;
    font-weight: normal;
    position: relative;
    padding: 18px 0 10px;
}

.picList1 h2::before {
    content: '';
    width: 45px;
    height: 40px;
    position: absolute;
    right: 20px;
    top: -21px;
    background: url('./images/bg1.gif') no-repeat 50% 50%/100% 100%;
}

/* 图片视频库 */

.video {
    width: 1170px;
    margin: 0 auto;
}

.video ul {
    zoom: 1;
    overflow: hidden;
}

.video li {
    width: 575px;
    height: 350px;
    float: left;
    display: inline-block;
    margin: 0 0 20px 20px;
    position: relative;
}

.video li:nth-child(2n+1) {
    margin-left: 0;
}

.video li img {
    width: 575px;
    height: 350px;
}

.video p {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    transition: opacity .5s;
}

.video li:hover p {
    opacity: 1;
}

.video p a {
    display: inline-block;
    width: 60%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

/* 中间的大图 */

.middle-banner {
    width: 1170px;
    margin: 50px auto -60px;
}

.middle-banner img {
    width: 100%;
}

/* 丝路视界 */

.look p {
    height: 36px;
    box-sizing: border-box;
}

.look li:nth-child(1) h2::before {
    background: url('./images/bg2.gif') no-repeat 50% 50%/100% 100%;
}

.look li:nth-child(2) h2::before {
    background: url('./images/bg3.gif') no-repeat 50% 50%/100% 100%;
}

.look li:nth-child(3) h2::before {
    background: url('./images/bg4.gif') no-repeat 50% 50%/100% 100%;
}

/* 底部大图 */

.bottom-banner {
    width: 1170px;
    margin: 80px auto;
    text-align: center;
    font-size: 16px;
    line-height: 40px;
    color: #434343;
}

.bottom-banner a {
    color: #434343;
}

.bottom-banner img {
    margin-bottom: 30px;
}

.footerWrap {
    padding: 50px 0;
    background: #212121;
}

.footer {
    width: 1170px;
    margin: 0 auto;
}

.footer h2 {
    font-size: 30px;
    color: #fff;
    font-weight: normal;
}

.footer div {
    zoom: 1;
    overflow: hidden;
    margin: 40px 0;
}

.footer ul {
    width: 25%;
    float: left;
    box-sizing: border-box;
    padding-right: 10px;
    font-size: 16px;
    color: rgba(255, 255, 255, .6);
}

.footer ul a {
    color: rgba(255, 255, 255, .6);
}

.footer h5 {
    text-align: center;
    font-weight: normal;
    font-size: 16px;
    color: rgba(255, 255, 255, .6);
}

/* 二级页 */

.second {
    min-height: 384px;

	position: relative;

	margin: 20px auto 0;

	box-sizing: border-box;

	padding: 0 200px 0 450px;
}

.list {
    width: 100%;

	margin-top: 50px;
}

.list li {
    margin-bottom: 35px;
}

.list h3 {
    font-weight: normal;
    font-size: 22px;
}

.list p {
    font-size: 16px;
    color: #ABABAB;
}

.list p a {
    color: #ABABAB;
}

.list span {
    display: block;
    text-align: right;
    font-size: 12px;
}

.menuBar {
    width: 210px;
    position: absolute;
    background: #EBE7E7;
	margin: 25px 0 0 175px;
    left: 0;
    top: 0;
}

.menuBar .cat-item.current-cat {
    background: #61686c;
    color: #ffffff;
}

.menuBar .cat-item.current-cat a {
    color: #fff;
}

.menuBar .cat-item {
    padding: 10px 0;
    border-bottom: 1px solid #fff;
    font-size: 16px;
    color: #494949;
    text-align: center;
}

.menuBar .cat-item a {
    color: #494949;
}

.showBtn {
    display: none;
}

/* 内容页 */
.main {
    width: 1080px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 40px 0 30px;
    text-align:center;
}

.main h1 {
	font-family: 'Times New Roman',Times,FreeSerif,serif;
    font-size: 26px;
    font-weight: normal;
    line-height: 52px;
    color: #333;
    padding: 15px 60px;
    display: inline-block;
    text-align: left;
    word-break:break-word;
}

.bread {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 480px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #808080;
    border-bottom: 1px solid #D4D4D6;
}

.bread .txt {
    display: flex;
    justify-content: flex-start;
}

.bread .txt p {
    padding-right: 25px;
}

.bread .fn {
    width: 250px;
    display: flex;
    justify-content: flex-start;
}

.bread .share {
    padding-top: 8px;
}

.bread .colors {
    display: flex;
    justify-content: flex-start;
    padding: 12px 0 0 15px;
}

.bread .colors p {
    width: 10px;
    height: 10px;
    overflow: hidden;
    border: 1px solid #666;
    margin-right: 6px;
    cursor: pointer;
}

.bread .colors p.white {
    background: #fff;
}

.bread .colors p.paleGreen {
    background: #E6FFFF;
}

.bread .colors p.skyBlue {
    background: #CCFFFF;
}

.bread .colors p.yellow {
    background: #FFFFCC;
}

.bread .colors p.purple {
    background: #FFCCFF;
}

.bread .colors p.blue {
    background: #99CCFF;
}

.bread .colors p.gray {
    background: #EEEEEE;
}

.content {
    font-size: 20px;
    color: #4a4a4a;
    line-height: 200%;
    box-sizing: border-box;
    padding: 20px 60px;
}

.content p {
	font-family: 'Times New Roman',Times,FreeSerif,serif;
	font-size: 18px;
    padding-bottom: 20px;
	text-align: justify
}

.content p img {
  display: inline-block;
  height: auto;
  max-width: 100%;
}

.content p img.aligncenter {
    display:block;margin:0 auto;
}

.content h5 {
    font-weight: normal;
    text-align: right;
}

.recommend {
    width: 1080px;
    box-sizing: border-box;
    padding: 0 60px 50px;
    margin: 0 auto;
}

.recommend h2 {
    border-bottom: 1px solid #606060;
    padding-bottom: 6px;
    zoom: 1;
    overflow: hidden;
}

.recommend h2 span {
    float: left;
    font-size: 24px;
    color: #2C343D;
    border-bottom: 2px solid #0068DA;
    padding: 0 10px 5px;
}

.recommend li {
    border-top: 1px solid #DFDFE1;
    padding: 20px 0;
    zoom: 1;
    overflow: hidden;
}

.recommend li:first-child {
    border-top: none;
}

.recommend img {
    width: 207px;
    height: 152px;
    float: left;
}

.recommend div {
    width: 733px;
    float: right;
}

.recommend h3 {
    color: #2E373F;
    font-weight: normal;
    padding: 5px 0 15px;
    display: none;
}

.recommend h3 a {
    color: #2E373F;
}

.recommend li div h3 {
    display: block;
}

.recommend p {
    font-size: 14px;
    color: #BABABA;
}

.recommend span,
.recommend span a {
    color: #CE4612;
}
.i_vm {
    width:50%;
    margin-top:30px;
}
@media screen and (max-width: 1024px) {
    html {
        font-size: 312.5%;
    }

    body {
        font: .3rem/200% 'Microsoft YaHei', sans-serif;
    }

    .topWrap {
        width: 100%;
        box-sizing: border-box;
        padding: .3rem;
        text-align: center;
        position: relative;
        flex-direction: column;
        align-items: center;
    }

    .logo {
        margin-left:50px;
		width:167px;
		height:30px;
        float: left;
    }

    .topBar {
        width: 100%;
        padding-top: 0;
    }

    .topBar ul {
        font-size: .3rem;
        padding-top: .1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        position: relative;
        box-sizing: border-box;
        padding-left: 1.2rem;
    }

    .topBar li {
        padding: 0;
        flex: 0 0 33%;
    }

    .topBar li:nth-child(1) {
        position: absolute;
        left: .3rem;
        top: .1rem;
    }

    .search {
        width: 3rem;
        height: .45rem;
        border-radius: .2rem;
        padding: 0 .1rem;
        margin-right: .15rem;
        transition: none;
        position: absolute;
        top: .3rem;
        right: .3rem;
    }

    .search.change {
        width: 3rem;
    }

    .searchInput {
        width: 2.3rem;
        height: .45rem;
        line-height: .45rem;
        transition: none;
        box-sizing: border-box;
        padding: 0 .2rem;
    }

    .search.change .searchInput {
        width: 2.3rem;
    }

    .searchBtn {
        width: .45rem;
        height: .45rem;
    }

    .changePic .swiper-pagination {
        width: auto;
        position: absolute;
        left: auto;
        right: .2rem;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
    }

    .changePic .swiper-pagination .swiper-pagination-bullet {
        margin: 2.5px;
        width: .12rem;
        height: .12rem;
    }

    .lmName {
        width: 100%;
        margin: 0;
        padding: .6rem 0 .3rem;
    }

    .lmName h2 {
        font-size: .4rem;
        line-height: 1em;
        padding-bottom: .35rem;
    }

    .lmName h2::after {
        width: 1.45rem;
    }

    .exchange {
        width: 100%;
        margin: 0;
        border: none;
        padding: 0 0.2rem;
    }
    
    
	
	.Box1_Left {
	    width: 100%;
	    overflow: hidden;
	    position: relative;
	    float: left;
	}

	
	.Box1_Right {
		width: 100%;
		float: right;
		padding: 0;
	}
	
	.Box1_Right li {
	    padding: 0.2rem;
	    overflow: hidden;
	    border-bottom: solid 1px #E7E7E7;
	}

    .picList1 {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
        padding: 0 0.2rem;
    }

    .picList1 li {
        width: 100%;
        float: none;
        margin: 0 0 .3rem 0;
        border: none;
    }

    .picList1 li img {
        width: 100%;
        height: auto;
    }

    .picList1 p {
        padding: .2rem 0 .2rem .3rem;
        line-height: .36rem;
        font-size: .24rem;
        border-bottom: 1px dashed #bfbfbf;
    }

    .picList1 h2 {
        font-size: .32r6em;
        padding: .2rem 0 .2rem .3rem;
        text-align: left;
    }

    .picList1 h2::before {
        display: none;
    }

    .video {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
        padding: 0 0.2rem;
    }

    .video li {
        width: 100%;
        height: auto;
        float: none;
        margin: 0 0 .2rem 0;
    }

    .video li img {
        width: 100%;
        height: auto;
    }

    .video p {
        position: relative;
        width: 100%;
        height: auto;
        background: none;
        opacity: 1;
        transition: none;
    }

    .video p a {
        display: inline-block;
        width: 100%;
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        color: #000;
    }

    .middle-banner {
        width: 100%;
        margin: .3rem auto 0;
    }

    .bottom-banner {
        width: 100%;
        margin: .3rem auto .8rem;
        font-size: .3rem;
        line-height: .42rem;
    }

    .bottom-banner a {
        color: #434343;
    }

    .bottom-banner img {
        width: 100%;
        margin-bottom: .3rem;
    }

    .bottom-banner div {
        padding: 0 1rem;
    }

    .bottom-banner p {
        display: inline;
        text-align: justify;
    }

    .footerWrap {
        background: #212121;
        padding: .5rem 0;
    }

    .footer {
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
        padding: 0 .6rem;
    }

    .footer h2 {
        font-size: .3rem;
    }

    .footer div {
        margin: .4rem 0;
    }

    .footer ul {
        width: 50%;
        padding-right: .1rem;
        font-size: .24rem;
    }

    .footer h5 {
        font-size: .24rem;
    }

    .second {
        width: 100%;
        margin: 0;
        padding: .6rem;
    }

    .list li {
        margin-bottom: .35rem;
    }

    .list h3 {
        font-size: .34rem;
    }

    .list p {
        font-size: .3rem;
    }

    .list span {
        font-size: .24rem;
    }

    .menuBar {
        width: 3rem;
        position: absolute;
        transition: transform .5s;
        transform: translate(-100%, .6rem);
    }

    .menuBar .showBtn {
        width: .5rem;
        height: .5rem;
        position: absolute;
        top: 0;
        right: -.5rem;
        background: #4DB1EC;
        display: block;
    }

    .menuBar .showBtn::before,
    .menuBar .showBtn::after {
        content: '';
        position: absolute;
        left: 10%;
        width: 80%;
        height: .05rem;
        background: #fff;
        transition: all .2s;
    }

    .menuBar .showBtn::before {
        top: 30%;
    }

    .menuBar .showBtn::after {
        top: 60%;
    }

    .menuBar.show {
        transform: translate(0, .6rem);
    }

    .menuBar.show .showBtn::before {
        transform: rotate(-45deg);
        margin: .05rem 0 0;
    }

    .menuBar.show .showBtn::after {
        transform: rotate(45deg);
        margin: -.1rem 0 0;
    }

    .menuBar .cat-item {
        padding: .1rem 0;
        font-size: .34rem;
        width: 100%;
    }

    .main {
        width: 100%;
        margin: 0;
        padding: .4rem 0 .3rem;
    }

    .main h1 {
        font-size: .4rem;
        line-height: .52rem;
        padding: .15rem 0;
    }

    .bread {
        width: 100%;
        box-sizing: border-box;
        padding: .3rem;
        font-size: .24rem;
    }

    .bread .txt p {
        padding-right: .25rem;
    }

    .bread .fn {
        width: 2.5rem;
        display: none;
    }

    .bread .share {
        padding-top: .08rem;
    }

    .bread .colors {
        padding: .12rem 0 0 .15rem;
    }

    .bread .colors p {
        width: .1rem;
        height: .1rem;
        margin-right: .06rem;
    }

    .content {
        font-size: .3rem;
        padding: .2rem .3rem;
    }

    .content p {
        padding-bottom: .2rem;
    }

    .content h5 {
        font-size: .3rem;
    }

    .recommend {
        width: 100%;
        padding: 0 0 .3rem;
        margin: 0;
    }

    .recommend h2 {
        padding-bottom: .06rem;
    }

    .recommend h2 span {
        font-size: .36rem;
        padding: 0 .1rem .05rem;
    }

    .recommend li {
        padding: .2rem .3rem;
    }

    .recommend img {
        width: 30%;
        height: auto;
    }

    .recommend div {
        padding-left: .2rem;
        width: 70%;
        box-sizing: border-box;
    }

    .recommend h3 {
        padding: .05rem 0 .15rem;
        font-size: 0.32rem;
        font-weight: bold;
        display: block;
    }

    .recommend li div h3 {
        display: none;
    }

    .recommend p {
        font-size: .24rem;
        line-height: 1.8em;
    }
    .i_vm {
        width:100%;
        margin-top: 10px;
    }
}
